Dynomotion

Group: DynoMotion Message: 14370 From: gyelle10 Date: 1/26/2017
Subject: Open and Execute function
Attachments :
Hi TK,

I programmed my Kflop to work in stand alone (with your help). A PLC sends Rs232 command or digital input to command the Kflop. I knew there would be insufficient memory and I reached the limit. 

I would like to add a computer where Kmotion.exe could run but I would still send command to my Kflop with the PLC. Is there a way to open a file in the Gcode interface and then execute it with a Cprogram ?
Inline image
For example, I save the name of the file in a variable, I call the "Open" function, I give the name of the file and then I call the "Execute" function.

Best regards,

GY

 


Sent from Yahoo Mail. Get the app
  @@attachment@@
Group: DynoMotion Message: 14371 From: Marrocco, Sam Date: 1/26/2017
Subject: Re: Open and Execute function [1 Attachment]



On 1/26/2017 10:28 AM, gyelle10@... [DynoMotion] wrote:
 
Hi TK,

I programmed my Kflop to work in stand alone (with your help). A PLC sends Rs232 command or digital input to command the Kflop. I knew there would be insufficient memory and I reached the limit. 

I would like to add a computer where Kmotion.exe could run but I would still send command to my Kflop with the PLC. Is there a way to open a file in the Gcode interface and then execute it with a Cprogram ?
Inline image
For example, I save the name of the file in a variable, I call the "Open" function, I give the name of the file and then I call the "Execute" function.

Best regards,




Perhaps you could use a KFlop user variable. This array of 200 variables can be used from your own code to "share" variables (such as your gcode file name) and pass it to an executing thread on the KFlop. I've done this before with dotnet code. Perhaps a macro of some sort could be used in KMotion to do something similiar?




sam marrocco | chief technical officer
ringside.cutters.flavor.picnic.moonlink

248 548 2500 w
248 910 3344 c

ringsidecreative.com

Group: DynoMotion Message: 14372 From: gyelle10 Date: 1/26/2017
Subject: Re: Open and Execute function
Hello Sam,

It is the idea that I had in mind but I don't know where to find the source code that Kmotion execute when "Open" and "Execute" is pressed. Where did you find it ?

Thanks,

GY
 


Sent from Yahoo Mail. Get the app


On Thursday, January 26, 2017 10:50 AM, "'Marrocco, Sam' SMarrocco@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 


On 1/26/2017 10:28 AM, gyelle10@... [DynoMotion] wrote:
 
Hi TK,

I programmed my Kflop to work in stand alone (with your help). A PLC sends Rs232 command or digital input to command the Kflop. I knew there would be insufficient memory and I reached the limit. 

I would like to add a computer where Kmotion.exe could run but I would still send command to my Kflop with the PLC. Is there a way to open a file in the Gcode interface and then execute it with a Cprogram ?
Inline image
For example, I save the name of the file in a variable, I call the "Open" function, I give the name of the file and then I call the "Execute" function.

Best regards,




Perhaps you could use a KFlop user variable. This array of 200 variables can be used from your own code to "share" variables (such as your gcode file name) and pass it to an executing thread on the KFlop. I've done this before with dotnet code. Perhaps a macro of some sort could be used in KMotion to do something similiar?




sam marrocco | chief technical officer
ringside.cutters.flavor.picnic.moonlink

248 548 2500 w
248 910 3344 c

ringsidecreative.com



Group: DynoMotion Message: 14373 From: Marrocco, Sam Date: 1/26/2017
Subject: Re: Open and Execute function



On 1/26/2017 11:41 AM, gyelle10@... [DynoMotion] wrote:
 
Hello Sam,

It is the idea that I had in mind but I don't know where to find the source code that Kmotion execute when "Open" and "Execute" is pressed. Where did you find it ?



Since I don't use the KMotion application I can't help you specifically with that part. But I do know you could get to those variables via KFlop C Code and a custom external application for trading data. Tom K. might have to help you with accessing those via a KMotion command or Macro of some sort.

sam marrocco | chief technical officer
ringside.cutters.flavor.picnic.moonlink

248 548 2500 w
248 910 3344 c

ringsidecreative.com

Group: DynoMotion Message: 14374 From: Tom Kerekes Date: 1/26/2017
Subject: Re: Open and Execute function

Hi GY,

There isn't currently a mechanism for opening a GCode file from KFLOP.  I doubt if there are any other Users wanting to do this.

I think you should really be considering KMotionCNC not KMotion.exe.  The GCode functionality in KMotion.exe has been superseded by KMotionCNC.  KMotionCNC supports a number of commands that can be issued from KFLOP to KMotionCNC such as Cycle/Start which is equivalent to  "Execute" in KMotion.exe.  See the KFLOPtoPCCmdExamples.c Example.  It does not support opening a specific file.  I suppose you could add that yourself.  A technique similar to sending a string from KFLOP to KMotionCNC to be displayed in a MessageBox.  See how PC_COMM_MSG is handled by KMotionCNC in the module KMotionCNCDlg.cpp

KMotionCNC does have the Automation capability to allow another PC Application (not KFLOP) to open a specified GCode File.  The PC Application can do this by sending a message of ID_OpenGCodeFile.  The PC C# Example SimpleFormsCS has an example of how to do this.  So using this approach a PC application could upload the filename from KFLOP and instruct KMotionCNC to Open and Execute the file.

Regards

TK




On 1/26/2017 10:50 AM, 'Marrocco, Sam' SMarrocco@... [DynoMotion] wrote:
 



On 1/26/2017 11:41 AM, gyelle10@... [DynoMotion] wrote:
 
Hello Sam,

It is the idea that I had in mind but I don't know where to find the source code that Kmotion execute when "Open" and "Execute" is pressed. Where did you find it ?



Since I don't use the KMotion application I can't help you specifically with that part. But I do know you could get to those variables via KFlop C Code and a custom external application for trading data. Tom K. might have to help you with accessing those via a KMotion command or Macro of some sort.

sam marrocco | chief technical officer
ringside.cutters.flavor.picnic.moonlink

248 548 2500 w
248 910 3344 c

ringsidecreative.com


Group: DynoMotion Message: 14395 From: Shannon Davenport Date: 2/14/2017
Subject: Re: Open and Execute function [1 Attachment]
Hi GY,
This may or may not be helpful to you but... 
here is a VB6 function that Tom helped me with.  It opens a gcode file in KMotionCNC.
Shannon


Public Sub kmotioncnc_load_file(file As String)

Dim hwnd As Long
Dim lhWndP As Long
Dim fn As String
Dim cds As COPYDATASTRUCT
Dim buf(1 To 255) As Byte
Dim i As Long
If GetHandleFromPartialCaption(lhWndP, "KMotionCNC") = True Then 'make sure kmotioncnc is running
    fn = StrConv(file, vbUnicode) 'the full path and file name
    CopyMemory buf(1), ByVal fn, Len(fn)
    cds.cbData = Len(file) * 2 + 1
    cds.lpData = VarPtr(buf(1))
    SendMessage lhWndP, WM_COPYDATA, Me.hwnd, cds
    SendMessage lhWndP, WM_COMMAND, 33018, 0
Else
    MsgBox "KMotionCNC does not appear to be running.  Run it and try again.", vbCritical, "Yo Loser"
End If

Draw_G_Code file

Exit Sub
errchk:
'Stop
End Sub


On Thu, Jan 26, 2017 at 10:28 AM, gyelle10@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 
[Attachment(s) from gyelle10@... included below]

Hi TK,

I programmed my Kflop to work in stand alone (with your help). A PLC sends Rs232 command or digital input to command the Kflop. I knew there would be insufficient memory and I reached the limit. 

I would like to add a computer where Kmotion.exe could run but I would still send command to my Kflop with the PLC. Is there a way to open a file in the Gcode interface and then execute it with a Cprogram ?
Inline image
For example, I save the name of the file in a variable, I call the "Open" function, I give the name of the file and then I call the "Execute" function.

Best regards,

GY

 


Sent from Yahoo Mail. Get the app